home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / convert / convert.dpr < prev    next >
Encoding:
Text File  |  1995-12-22  |  587 b   |  26 lines

  1. {Conversion Programme -
  2.  
  3.  Designer:  Craig Ward
  4.  Date:      19/7/95
  5.  
  6.  Function:  Converts values entered by user to format as specified
  7.             by the user.
  8.  
  9.  ******************************************************************************}
  10. program Convert;
  11.  
  12. uses
  13.   Forms,
  14.   Main in 'MAIN.PAS' {Form1},
  15.   About in 'ABOUT.PAS' {AboutBox};
  16.  
  17. {$R *.RES}
  18.  
  19. begin
  20.   Application.Title := 'Value Converter';
  21.   Application.HelpFile := 'C:\WINDOWS\CONV.HLP';
  22.   Application.CreateForm(TForm1, Form1);
  23.   Application.CreateForm(TAboutBox, AboutBox);
  24.   Application.Run;
  25. end.
  26.